projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
49daa5b
)
(EQ): Use == so args are computed just once.
author
Richard M. Stallman
<rms@gnu.org>
Sun, 11 Dec 2005 15:35:51 +0000
(15:35 +0000)
committer
Richard M. Stallman
<rms@gnu.org>
Sun, 11 Dec 2005 15:35:51 +0000
(15:35 +0000)
src/lisp.h
patch
|
blob
|
history
diff --git
a/src/lisp.h
b/src/lisp.h
index ad5088da65f35e3b95901542d69ca02e9923c0a2..b8213c516cb0968ff8b8d156119a997f1b16a6a8 100644
(file)
--- a/
src/lisp.h
+++ b/
src/lisp.h
@@
-454,7
+454,7
@@
enum pvec_type
extern Lisp_Object make_number P_ ((EMACS_INT));
#endif
-#define EQ(x, y) ((x).
s.val == (y).s.val && (x).s.type == (y).s.type
)
+#define EQ(x, y) ((x).
i == (y).i
)
#endif /* NO_UNION_TYPE */